@import "flex.css";
@import "footer.css";
@import url('https://fonts.googleapis.com/css?family=Poppins');

:root
{
    --color-itemax: rgb(38,106,174);

    --color-grisclaro: #4c4c4c;
    --color-grisoscuro: #3a3a3a;
}
 
body
{
    font-family: 'Poppins' !important;
    margin: 0;
    overflow-x: hidden;
    padding: 0;
}

#header
{
    position: fixed;
    top: 0;
    width: 100%;
    background-image: linear-gradient(to bottom, var(--color-grisclaro), var(--color-grisoscuro));
}

.seccion
{
    background-image: linear-gradient(var(--color-grisoscuro),var(--color-grisclaro),var(--color-grisoscuro));
}

#menu
{
    background-image: url('../img/FONDO ITEMAX.png');
    background-position: top right;
    background-attachment: fixed;
}
.nos
{
    margin: 2vh 2vw;
    padding: 2vh 2vw;
    border-radius: 8px;
    width: 75%;
    margin: 1rem 0.21rem;
    background-image: linear-gradient(to bottom, var(--color-grisclaro), var(--color-grisoscuro));
    
}

.menu
{
    width: 18%;
    margin: 1rem 0.21rem;
    
}

#headerLogo
{
    width: 25rem;
}

.logo
{
    width: 12vw;
    transition: 0.3s;
}

.logo-container
{
    width: 100%;
    padding: 0;
}

h1,h2,h3,h4,h5,h6,p,label,li,a
{
    font-family: 'Poppins';
}

.white
{
    color: white;
}

h1,h2,h3,h4,h5
{
    margin: 0.2rem;
}

p
{
    margin: 0;
}

a
{
    text-decoration: none;
    text-align: center;
}



.l
{
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-left: 2px solid;
    border-right: 2px solid;
    border-top: 2px solid;
    border-color: grey;
}

.subtitulo
{
    color: var(--color-itemax);
    background-color: white;
    text-align: center;
    width: 100%;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.card
{
    padding: 1vw;
    overflow: hidden;
    display: none;
    max-height: 0;
    transition: max-height 0.2s ease-out;
}

.pregunta
{
    text-align: left;
    transition: 0.4s;
}

.pregunta:hover
{
    cursor: pointer;
}

#plus 
{
    list-style: none;
}
.blue::before
{
    content: " + ";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--color-itemax); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
}
.tick {
list-style-type: " ✔ ";
}
.game {
list-style-type: " 🎮 ";
}


#desc ul {
    list-style: none; /* Remove default bullets */
  }
  
 #desc ul li::before {
    content: "\2022";  /* Add content: \2022 is the CSS Code/unicode for a bullet */
    color: var(--color-itemax); /* Change the color */
    font-weight: bold; /* If you want it to be bold */
    display: inline-block; /* Needed to add space between the bullet and the text */
    width: 1em; /* Also needed for space (tweak if needed) */
    margin-left: -1em; /* Also needed for space (tweak if needed) */
  }

#desc
{
    background-color: rgb(26,26,26);
    border: 2px solid white;
    width: 50%;
    height: 100%;
}
.button
{
    text-align: center;
    background-color: rgb(26,26,26);
    border: 2px solid white;
    border-radius: 8px;
    width: 10vw;
    height: 5vh;
    margin: 0.5rem;
    color: white;
    transition: 1s;
}
.button:hover
{
    cursor: pointer
}
.selected
{
    background-color: var(--color-itemax)
}
h6
{
    height: 100%;
    width: 100%;
}


#subtituloGrilla
{
    margin-top: 2em;
    margin-bottom: 2em;
    width: 70%;
    text-align: center;
}

#imagenContainer
{
    width: 100%;
}

.titulo
{
    text-align: center;
    border-top: 2px solid var(--color-itemax);
    border-bottom: 2px solid var(--color-itemax); 
    background-color: rgb(26,26,26); 
    padding: 1px;
}

@media (max-width: 980px) {
    #main
    {
        display: none
    }
    .button
    {
        width: 15vw;
    }
}

@media (max-width: 549px) {
    .button
    {
        width: 30vw;
    }
}

@media (max-width: 416px) {
    #headerLogo
    {
        width: 20em;
    }
}
